int[] a = {3};
int[] b = {3};
int[] c = a;

boolean test1 = a==b; //questo è un commento
boolean test2 = a==c;

System.out.println ("a uguale b: "+ test1);
//System.out.println ("a uguale c: "+ test2);


/* 
c[0]=10;
System.out.println ("a[0]=" + a[0]);
*/
System.out.println ("Ciao");